/* CSS for the Slot Machine Game */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.slot-machine {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    /* Allow the elements to wrap to the next line */
    gap: 10px;
    /* Add space between both rows and columns */
}

.reel {
    width: 120px;
    height: 100px;
    margin: 0 5px;
    font-size: 0.8em;
    color: white;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


#start-button {
    padding: 10px 20px;
    font-size: 1.2em;
    margin: 10px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#start-button:disabled {
    background-color: #888;
    cursor: not-allowed;
}

#show-button {
    padding: 10px 20px;
    font-size: 1.2em;
    margin: 10px;
    color: white;
    background-color: #ff009d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#show-button:disabled {
    background-color: #888;
    cursor: not-allowed;
}

#next-button {
    padding: 10px 20px;
    font-size: 1.2em;
    margin: 0 10px;
    color: white;
    background-color: #0a4634;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#next-button:disabled {
    background-color: #888;
    cursor: not-allowed;
}

#back-button {
    padding: 10px 20px;
    font-size: 1.2em;
    margin: 0 10px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#back-button:disabled {
    background-color: #888;
    cursor: not-allowed;
}